home *** CD-ROM | disk | FTP | other *** search
- >** - top of file - |
-
- >**
-
- Script name: setparms.do, V. 1.2.0 - 02/13/92.
-
- Copyright (C) 1992 by Al Fasoldt.
-
- WARNING! This text contains lines that may be longer than 80
- columns. If you edit this file, TURN WORD WRAP OFF or use a
- setting of more than 100 columns.
-
- This script prompts you for standard Flash parameters, then
- saves then in Flash's configuration file so that they will be
- loaded each time Flash runs.
-
- |
-
- >** Beginning of script.|
- >L: NullVars|
- >** All variables are nulled first.|
- >al "[3][WARNING!|This clears all variables.|Proceed anyway?][Yes|No]" $X 2|
- >ifi $X "No" jmp cancel|
- >ty Clearing variables ...|
- >ty|
- >$A|
- >$B|
- >$C|
- >$D|
- >$E|
- >$F|
- >$G|
- >$H|
- >$I|
- >$J|
- >$K|
- >$L|
- >$M|
- >$N|
- >$O|
- >$P|
- >$Q|
- >$R|
- >$S|
- >$U|
- >$V|
- >$W|
- >$X|
- >$Y|
- >$Z|
-
- >al "[2][Modem reset command:][ATZ|Other]" $R 1|
- >ifi $R "other" qu "Type reset string:" $R|
- >al "[2][Baud rate:][1200|2400|9600]" $B 0|
- >al "[2][Duplex:][Half|Full]" $D 0|
- >al "[2][Word length:][8 bits|7 bits]" $W 1|
- >al "[2][Stop bits:][1|2]" $S 0|
- >al "[2][Parity:][Even|Odd|None]" $O 0|
- >al "[2][Echo:][On|Off]" $E 2|
- >al "[2][Line feeds:][On|Off]" $B 2|
- >al "[2][Capture status:][On|Off]" $C 1|
- >al "[2][Emulation:][VT52|ANSI|Vidtex]" $M 1|
- >al "[2][Translation:][On|Off]" $G 2|
- >al "[2][Xmodem CRC|or regular?][C|R]" $R 1|
- >al "[2][Xmodem block size:][128 bytes|1K bytes]" $L 1|
- >ifi $L "1K" jmp xmk|
- >$L|
- >al "[2][Xmodem timing:Tight or loose][T|L]" $T 1|
- >al "[2][Xmodem padding:|Standard or Ctl-Z?][S|Z]" $Z 1|
- >jmp setall|
- >L: xmk|
- >$L K|
-
- >L: setall|
- >mp $R|
- >ba $B|
- >du $D|
- >wl $W|
- >sb $S|
- >py $O|
- >ec $E|
- >lf $B|
- >ca $C|
- >em $M|
- >tr $G|
- >xm $R|
- >xm $L|
- >xm $T|
- >xm $Z|
-
- >sa co flash.cnf|
- >end|
-
- >L: cancel|
- >ty Script halted.|
- >ty|
- >end|
- >** end|
-